/*

    Whenever G-Force decides to show the song text (see the 'T?' pref), G-Force looks for a config titled "Track Info" to execute.  You can have G-Force do whatever you like by changing what you do in this config.  If G-Force can't find a config named "Track Info", G-Force won't do anything when 'T?' is greater than zero.  You should be familiar with "Example Image" and "Example Text" before looking at this config.

    In a text particle config, we use the meta variables #ARTIST#, #ALBUM#, and #TITLE# in the 'Text' parameter to reference track information.  See below.

*/


// The speed of the text: 1 in 5 chance that the text moves around (sqwv() returns 0 or 1)
Sped="20 * sqwv( rnd( 5 ) )",

/* Use GF to give us cords that bounce around the screen (or if 'Sped' is 0, just stay in the starting cord on the screen).  If we always wanted the text rectangle in the center of the screen, we could use X="0" and Y="0", or if we always wanted the text in the upper left part of the screen, we could use X="-.98" and Y=".98". */ 
X="XPOS",
Y="YPOS",


/*  This parameter tells G-Force the text you'd like to display.  Insert a "\r" in the text any time you want a line break (ex, "Line 1\rLine 2\rLine 3"). To change the font and size of the text, edit the TSze and TFnt parameters in your G-Force prefs file. */
Text="#ARTIST#\r#TITLE#\r#ALBUM#",
 

// The 'Pen' and 'EPen' parameters are omitted (see "Example Image")


// See "Spinners"...
PDur="7",

// Compatibilty...
Vers=100
 